================================================================================
                                样例使用说明
                             Sample Description
================================================================================
功能描述：
此样例是对I2S主机与I2S从机以DMA方式进行通信的演示，I2S主机先向I2S从机发送数据
0x1~0x10，I2S从机接收到数据后，再向I2S主机回发数据0x1~0x10，当I2S主机和I2S从机
成功接收数据时，小灯处于常亮状态；否则小灯处于闪烁状态。

Function descriptions:
This sample demonstrates communication between the I2S master and I2S slave 
using DMA. The I2S master sends data 0x1 to 0x10 to the I2S slave. The I2S 
slave receives the data and sends back data 0x1 to 0x10 to the I2S master. 
When both the I2S master and I2S slave successfully receive the data, the 
LED will be constantly on. Otherwise, the LED will be blinking.
================================================================================
测试环境：
测试用板：PY32F071_STK
MDK版本： 5.28
IAR版本： 9.20
GCC 版本：GNU Arm Embedded Toolchain 10.3-2021.10

Test environment:
Test board: PY32F071_STK
MDK Version: 5.28
IAR Version: 9.20
GCC Version: GNU Arm Embedded Toolchain 10.3-2021.10
================================================================================
使用步骤：
1. 选择两块PY32F071_STK板，一块作为主机，一块作为从机。
2. 编译并下载主机程序 I2S_TwoBoard_CommunicationMaster_DMA。
3. 编译并下载从机程序 I2S_TwoBoard_CommunicationSlave_DMA。
4. 连接主机和从机的引脚（箭头指向为信号传输方向）：
   主机 MASTER:         从机 SLAVE:
   SD(PB15)    <----->   SD(PB15)
   WS(PB12)    ----->    WS(PB12)
   CK(PB13)    ----->    CK(PB13)
   GND         <----->   GND
5. 主机和从机上电后，按下主机和从机的复位按键。
6. 先按下从机的用户按键运行从机程序，再按下主机的用户按键运行主机程序。
7. 观察主机和从机的LED灯，当主机和从机的LED灯由常暗转为常亮状态，则表示主机和从机
   收发数据成功；当主机或从机的LED灯处于闪烁状态，则表示主机和从机收发数据失败。

Example execution steps:
1. Select two PY32F071_STK boards, one as the master and one as the slave.
2. Compile and download the master program I2S_TwoBoard_CommunicationMaster_DMA.
3. Compile and download the slave program I2S_TwoBoard_CommunicationSlave_DMA.
4. Connect the pins of the master and slave boards (direction indicated by the 
   arrow):
   Master MASTER:         Slave SLAVE:
   SD(PB15)    <----->   SD(PB15)
   WS(PB12)    ----->    WS(PB12)
   CK(PB13)    ----->    CK(PB13)
   GND         <----->   GND
5. Power on the master and slave boards, and press the reset button on both.
6. Press the user button on the slave first to run the slave program, then press 
   the user button on the master to run the master program.
7. Observe the LEDs on the master and slave boards. When the LEDs on both the 
   master and slave boards change from dim to constantly on, it indicates that 
   the master and slave have successfully transmitted and received data. If the 
   LEDs on the master or slave are blinking, it indicates a failure in data 
   transmission.
================================================================================
注意事项：
如果需要使用按键:
StartKit版本为V2.0以下,需将StartKit.h中的StartKitVersion 2 注释掉，并打开
StartKitVersion 1
StartKit版本为V2.0及以上版本,则无需操作

Notes:
If you need to use buttons:
StartKit version is below V2.0, you need to comment StartKitVersion 2 in
StartKit.h, and open StartKitVersion 1 
StartKit version is V2.0 and above, no operation is required
================================================================================
